home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / gcc-263 / cp / makefile < prev    next >
Encoding:
Makefile  |  1994-12-19  |  8.5 KB  |  248 lines

  1. # Makefile for GNU C++ compiler.
  2. #   Copyright (C) 1987, 88, 90, 91, 92, 93, 1994 Free Software Foundation, Inc.
  3.  
  4. #This file is part of GNU CC.
  5.  
  6. #GNU CC is free software; you can redistribute it and/or modify
  7. #it under the terms of the GNU General Public License as published by
  8. #the Free Software Foundation; either version 2, or (at your option)
  9. #any later version.
  10.  
  11. #GNU CC is distributed in the hope that it will be useful,
  12. #but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. #GNU General Public License for more details.
  15.  
  16. #You should have received a copy of the GNU General Public License
  17. #along with GNU CC; see the file COPYING.  If not, write to
  18. #the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. # The makefile built from this file lives in the language subdirectory.
  21. # It's purpose is to provide support for:
  22. #
  23. # 1) recursion where necessary, and only then (building .o's), and
  24. # 2) building and debugging cc1 from the language subdirectory, and
  25. # 3) nothing else.
  26. #
  27. # The parent makefile handles all other chores, with help from the
  28. # language makefile fragment, of course.
  29. #
  30. # The targets for external use are:
  31. # all, TAGS, ???mostlyclean, ???clean.
  32.  
  33. # Suppress smart makes who think they know how to automake Yacc files
  34. .y.c:
  35.  
  36. # Variables that exist for you to override.
  37. # See below for how to change them for certain systems.
  38.  
  39. ALLOCA =
  40.  
  41. # Various ways of specifying flags for compilations:  
  42. # CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
  43. # BOOT_CFLAGS is the value of CFLAGS to pass
  44. # to the stage2 and stage3 compilations
  45. # XCFLAGS is used for most compilations but not when using the GCC just built.
  46. XCFLAGS =
  47. CFLAGS = -g
  48. BOOT_CFLAGS = -O $(CFLAGS)
  49. # These exists to be overridden by the x-* and t-* files, respectively.
  50. X_CFLAGS =
  51. T_CFLAGS =
  52.  
  53. X_CPPFLAGS =
  54. T_CPPFLAGS =
  55.  
  56. CC = gcc
  57. BISON = bison
  58. BISONFLAGS =
  59. LEX = flex
  60. LEXFLAGS =
  61. AR = ar
  62. AR_FLAGS = rc
  63. SHELL = /bin/sh
  64. MAKEINFO = makeinfo
  65. TEXI2DVI = texi2dvi
  66.  
  67. # Define this as & to perform parallel make on a Sequent.
  68. # Note that this has some bugs, and it seems currently necessary 
  69. # to compile all the gen* files first by hand to avoid erroneous results.
  70. P =
  71.  
  72. # This is used in the definition of SUBDIR_USE_ALLOCA.
  73. # ??? Perhaps it would be better if it just looked for *gcc*.
  74. OLDCC = gcc
  75.  
  76. # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
  77. # It omits XCFLAGS, and specifies -B./.
  78. # It also specifies -B$(tooldir)/ to find as and ld for a cross compiler.
  79. GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS)
  80.  
  81. # Tools to use when building a cross-compiler.
  82. # These are used because `configure' appends `cross-make'
  83. # to the makefile when making a cross-compiler.
  84.  
  85. target=go32
  86. #version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < $(srcdir)\version.c`
  87. #mainversion=`sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/' < $(srcdir)\version.c`
  88.  
  89. # Directory where sources are, from where we are.
  90. srcdir = .
  91.  
  92. # Additional system libraries to link with.
  93. CLIB=
  94.  
  95. # Change this to a null string if obstacks are installed in the
  96. # system library.
  97. OBSTACK=obstack.o
  98.  
  99. # Choose the real default target.
  100. ALL=all
  101.  
  102. # End of variables for you to override.
  103.  
  104. # Definition of `all' is here so that new rules inserted by sed
  105. # do not specify the default target.
  106. all: all.indirect
  107.  
  108. # This tells GNU Make version 3 not to put all variables in the environment.
  109. .NOEXPORT:
  110.  
  111. # sed inserts variable overrides after the following line.
  112. ####target overrides
  113. ####host overrides
  114. ####cross overrides
  115. ####build overrides
  116.  
  117. # Now figure out from those variables how to compile and link.
  118.  
  119. all.indirect: Makefile ../cc1plus
  120.  
  121. # IN_GCC tells obstack.h that we are using gcc's <stddef.h> file.
  122. INTERNAL_CFLAGS = $(CROSS) -DIN_GCC
  123.  
  124. # This is the variable actually used when we compile.
  125. ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS)
  126.  
  127. # Likewise.
  128. ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
  129.  
  130. # Even if ALLOCA is set, don't use it if compiling with GCC.
  131.  
  132. SUBDIR_OBSTACK = ../obstack.o
  133. SUBDIR_USE_ALLOCA =
  134. SUBDIR_MALLOC =
  135.  
  136. # How to link with both our special library facilities
  137. # and the system's installed libraries.
  138. LIBS = $(SUBDIR_OBSTACK) $(SUBDIR_USE_ALLOCA) $(SUBDIR_MALLOC) $(CLIB)
  139.  
  140. # Specify the directories to be searched for header files.
  141. # Both . and srcdir are used, in that order,
  142. # so that tm.h and config.h will be found in the compilation
  143. # subdirectory rather than in the source directory.
  144. INCLUDES = -I. -I.. -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../config
  145.  
  146. # Always use -I$(srcdir)/config when compiling.
  147. .c.o:
  148.     $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<
  149.  
  150. # This tells GNU make version 3 not to export all the variables
  151. # defined in this file into the environment.
  152. .NOEXPORT:
  153.  
  154. # Lists of files for various purposes.
  155.  
  156. # Language-specific object files for g++
  157.  
  158. CXX_OBJS = call.o decl.o errfn.o expr.o pt.o sig.o typeck2.o \
  159.  class.o decl2.o error.o gc.o lex.o parse.o ptree.o spew.o typeck.o cvt.o \
  160.  edsel.o except.o init.o method.o search.o tree.o xref.o
  161.  
  162. # Language-independent object files.
  163. OBJS = @../s-objlist ../c-common.o
  164. OBJDEPS = ../s-objlist ../c-common.o
  165.  
  166. compiler: ../cc1plus
  167. ../cc1plus: $(P) $(CXX_OBJS) $(OBJDEPS) $(LIBDEPS)
  168.     $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o ../cc1plus \
  169.           $(CXX_OBJS) $(OBJS) $(LIBS)
  170.  
  171. Makefile: $(srcdir)/Makefile.in $(srcdir)/../configure
  172.     cd ..; $(SHELL) config.status
  173.  
  174. native: config.status ../cc1plus
  175.  
  176. # Compiling object files from source files.
  177.  
  178. # Note that dependencies on obstack.h are not written
  179. # because that file is not part of GCC.
  180.  
  181. # C++ language specific files.
  182.  
  183. RTL_H = $(srcdir)/../rtl.h $(srcdir)/../rtl.def \
  184.     $(srcdir)/../machmode.h $(srcdir)/../machmode.def
  185. TREE_H = $(srcdir)/../tree.h $(srcdir)/../real.h $(srcdir)/../tree.def \
  186.     $(srcdir)/../machmode.h $(srcdir)/../machmode.def
  187. CXX_TREE_H = $(TREE_H) cp-tree.h tree.def
  188.  
  189. parse.o : $(srcdir)/parse.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h lex.h
  190.     $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(BIG_SWITCHFLAG) \
  191.   parse.c
  192.  
  193. $(srcdir)/parse.c $(srcdir)/parse.h : $(srcdir)/parse.y
  194.     @echo expect 1 shift/reduce confict and 34 reduce/reduce conflicts.
  195.      $(BISON) $(BISONFLAGS) -d -o parse.c parse.y
  196.      grep '^#define[     ]*YYEMPTY' parse.c >>parse.h
  197.  
  198. # hash.h really depends on $(srcdir)/gxx.gperf.
  199. # But this would screw things for people that don't have gperf,
  200. # if gxx.gpref got touched, say.
  201. # Thus you have to remove hash.h to force it to be re-made.
  202. $(srcdir)/hash.h:
  203.     gperf -p -j1 -g -o -t -N is_reserved_word '-k1,4,7,$$' \
  204.         $(srcdir)/gxx.gperf >$(srcdir)/hash.h
  205.  
  206. spew.o : spew.c $(CONFIG_H) $(CXX_TREE_H) \
  207.   $(srcdir)/parse.h $(srcdir)/../flags.h lex.h
  208. lex.o : lex.c $(CONFIG_H) $(CXX_TREE_H) \
  209.   $(srcdir)/parse.h input.c $(srcdir)/../flags.h hash.h lex.h
  210. decl.o : decl.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h \
  211.   lex.h decl.h $(srcdir)/../stack.h
  212. decl2.o : decl2.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h \
  213.   lex.h decl.h
  214. typeck2.o : typeck2.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h
  215. typeck.o : typeck.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h $(RTL_H)
  216. class.o : class.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h
  217. call.o : call.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h class.h
  218. init.o : init.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h $(RTL_H)
  219. method.o : method.c $(CONFIG_H) $(CXX_TREE_H) class.h
  220. cvt.o : cvt.c $(CONFIG_H) $(CXX_TREE_H) class.h
  221. search.o : search.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../stack.h $(srcdir)/../flags.h
  222. tree.o : tree.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h
  223. ptree.o : ptree.c $(CONFIG_H) $(CXX_TREE_H)
  224. gc.o : gc.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h
  225. except.o : except.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h $(RTL_H)
  226. expr.o : expr.c $(CONFIG_H) $(CXX_TREE_H) $(RTL_H) $(srcdir)/../flags.h \
  227.   $(srcdir)/../expr.h ../insn-codes.h
  228. edsel.o : edsel.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../stack.h $(srcdir)/../flags.h
  229. xref.o : xref.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../input.h
  230. pt.o : pt.c $(CONFIG_H) $(CXX_TREE_H) decl.h $(srcdir)/parse.h
  231. error.o : error.c $(CONFIG_H) $(CXX_TREE_H)
  232. errfn.o : errfn.c $(CONFIG_H) $(CXX_TREE_H)
  233. sig.o : sig.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h
  234.  
  235. # These exist for maintenance purposes.
  236.  
  237. # Update the tags table.
  238. TAGS: force
  239.                     \
  240.     etags *.c *.h ;                \
  241.     echo 'l' | tr 'l' '\f' >> TAGS ;    \
  242.     echo 'parse.y,0' >> TAGS ;         \
  243.     etags -a ../*.h ../*.c;
  244.  
  245. .PHONY: TAGS
  246.  
  247. force:
  248.